home *** CD-ROM | disk | FTP | other *** search
- /***************
- **
- ** pwd.h
- **
- ** Header file for password-functions in pwd.c
- ** Written for Desperate password-cracker with hades encryption
- ** engine byte Remote.
- **
- ** Copyright (C)1992, Zabkar
- **
- ** root@waves.hacktic.nl (Zabkar)
- ** root@room101.hacktic.nl (Remote)
- **
- */
-
- struct passwd
- {
- char pw_name[20];
- char pw_passwd[40]; /* incompatible with unix pwd: should be 20! */
- int pw_uid;
- int pw_gid;
- char pw_gecos[80];
- char pw_dir[80];
- char pw_shell[80];
- };
-
-
- struct passwd *getpwent(void);
- struct passwd *getpwuid(int id);
- struct passwd*getpwnam(char *name);
- int setpwent(void);
- int endpwent(void);
- int pw_openfile(char *name);
-
- /* EOF PWD.H */
-